(unwind_redisplay): Clear redisplay_updating_p.
authorRichard M. Stallman <rms@gnu.org>
Thu, 25 Jul 2002 03:19:08 +0000 (03:19 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 25 Jul 2002 03:19:08 +0000 (03:19 +0000)
src/xdisp.c

index 5c8b786f4107e250a75a6a431c4bb17d1eaf1d32..687c0eb94406476749a746590b7e352e0a08a723 100644 (file)
@@ -9170,14 +9170,16 @@ redisplay_preserve_echo_area (from_where)
 
 
 /* Function registered with record_unwind_protect in
-   redisplay_internal.  Clears the flag indicating that a redisplay is
-   in progress.  */
+   redisplay_internal.  Reset redisplaying_p to the value it had
+   before redisplay_internal was called, and clear
+   redisplay_updating_p.  */
 
 static Lisp_Object
 unwind_redisplay (old_redisplaying_p)
      Lisp_Object old_redisplaying_p;
 {
   redisplaying_p = XFASTINT (old_redisplaying_p);
+  redisplay_updating_p = 0;
   return Qnil;
 }